home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / gets.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  106 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.10.16.23.54;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.20.00.42;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * gets.c --
  32.  *
  33.  *    Source code for the "gets" library procedure.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifndef lint
  46. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  47. #endif not lint
  48.  
  49. #include "stdio.h"
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * gets --
  55.  *
  56.  *    Read a line from stdin.
  57.  *
  58.  * Results:
  59.  *    Characters are read from stdin and placed at buf until a
  60.  *    newline is encountered or an end of file or error is encountered.
  61.  *    The newline is read and discarded, and the string at buf is left
  62.  *    null-terminated.  The return value is a pointer to buf if
  63.  *    all went well, or NULL if an end of file or error was encountered.
  64.  *
  65.  * Side effects:
  66.  *    Characters are removed from stream.
  67.  *
  68.  *----------------------------------------------------------------------
  69.  */
  70.  
  71. char *
  72. gets(bufferPtr)
  73.     char *bufferPtr;        /* Where to place characters. */
  74. {
  75.     register char *destPtr = bufferPtr;
  76.     register int c;
  77.     register FILE *stream = stdin;
  78.  
  79.     while (1) {
  80.     c = getc(stream);
  81.     if (c == EOF) {
  82.         *destPtr = 0;
  83.         return NULL;
  84.     }
  85.     if (c == '\n') {
  86.         break;
  87.     }
  88.     *destPtr = c;
  89.     destPtr++;
  90.     }
  91.     *destPtr = 0;
  92.     return bufferPtr;
  93. }
  94. @
  95.  
  96.  
  97. 1.1.1.1
  98. log
  99. @Initial branch for Sprite server.
  100. @
  101. text
  102. @d17 1
  103. a17 1
  104. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/gets.c,v 1.1 88/06/10 16:23:54 ouster Exp $ SPRITE (Berkeley)";
  105. @
  106.